home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 2001-01-06 | 1.9 KB | 62 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0" "TYPE"="1" "COUNT"="3" "UIPATH"="Appearance\Desktop\Icons\Tool Tips" "NAME"="Icon Tool Tips #2" "VERSION"="2.03" "LANGUAGE"="VBScript" "TEXT 1"="Recycle Bin" "TEXT 2"="Briefcase" "TEXT 3"="Control Panel" "DESCRIPTION 1"="If you have ActiveDesktop or Windows 2000 installed, a small yellow window (aka Tool Tip) for these items will appear on the desktop if you pass them with your mouse." "DESCRIPTION 2"="You can change these tips to anything you want." "DESCRIPTION 3"="NOTE: The tool tip for IE does currently not work on Windows 2000" "AUTHOR"="Xteq Systems" "CONTACTURL"="http://www.xteq.com" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved" "COMMENT 1"=" " "COMMENT 2"="Thanks to CptSiskoX for his help!" '****************************************************************** '*** !!COPY!! ONLY EDIT LINES BELOW! **** '****************************************************************** sVals=Array("{645FF040-5081-101B-9F08-00AA002F954E}","{85BBD920-42A0-1069-A2E4-08002B30309D}","{21EC2020-3AEA-1069-A2DD-08002B30309D}") '****************************************************************** '*** Keep an eye on the order (must be the same as "TEXT x") ! **** '****************************************************************** sP="HKLM\Software\Classes\CLSID\" sV="InfoTip" Sub Plugin_Initialize for i=0 to UBound(sVals) Call ReadIt(i+1,sVals(i)) next End Sub Sub ReadIt(UI,VAL) s=RegReadValue(sp & VAL & "\" & sV) Call SetUIElement(UI,s) End Sub Sub Plugin_CheckData(ElementIndex) End Sub Sub Plugin_Apply(ElementIndex,ElementSubIndex) for i=0 to UBound(sVals) Call WriteIt(i+1,sVals(i)) next End Sub Sub WriteIt(UI,VAL) s=GetUIElement(UI) Call RegWriteValue(sp & VAL & "\" & sV,s,1) End Sub Sub Plugin_Terminate End Sub